home *** CD-ROM | disk | FTP | other *** search
- --AMIGADOS GUIDE V2.6--
- IF
-
-
- USE:
- If is the main command used in the script languages condition testing
- process.
-
- PATH:
- Internal
-
- SYSTEM:
- 2.0 (enhanced), 2.1, 3.0
-
- EXAMPLES:
- IF <condition> (WARN, FAIL, etc..)
- --- ADOS commands
- ELSE
- --- ADOS commands
- ENDIF
-
- NOTES:
- The condition can be one of the options listed below. If the condition
- succeeds, control is passed to the next line until either an ENDIF is
- met or an ELSE is met. When ENDIF is encountered control jumps to the
- next level (if one exists). If ELSE is met, control jumps to the next
- ENDIF.
-
- Options:
- - STRING - ERROR - VAL
- - NOT - FAIL
- - WARN - EXISTS
-
-